d91d81118fc3fcac9a15af0f882000d3b6e9f456,singlenode/src/main/java/com/continuuity/SingleNodeMain.java,SingleNodeMain,startUp,#String[]#,130
Before Change
streamHttpService.startAndWait();
// it is important to respect that order: metastore, then HiveServer
hiveMetastore.startAndWait();
hiveServer.startAndWait();
if (externalAuthenticationServer != null) {
After Change
webCloudAppService.startAndWait();
streamHttpService.startAndWait();
if (hiveMetastore != null && hiveServer != null) {
// it is important to respect that order: metastore, then HiveServer
hiveMetastore.startAndWait();
hiveServer.startAndWait();
}